Xbasic

:: (Namespace Designator)

Syntax

Namespace :: FunctionName

Arguments

Namespace

A category or collection of functions.

FunctionName

The name of a function.

Description

Basically a Namespace allows Alpha Anywhere to organize classes into logical "folders". You can think of the :: directive as much like a slash when you define a path. The Xbasicmodule class in Alpha Anywhere is stored in the type namespace. See also Xbasic Objects, Namespaces.

Examples:

The connection object is in the sql namespace.

dim cn as SQL::connection

The adodb.connection object is in the ole namespace.

dim cn2 as ole::adodb.connection

See Also